home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / arp-pro1.3 / OLD_MANUAL / CreatePort < prev    next >
Text File  |  1990-06-22  |  997b  |  67 lines

  1.  
  2.  
  3.  
  4.      CreatePort(31.0)      ARP Programmers Manual      CreatePort(31.0)
  5.  
  6.  
  7.  
  8.      NAME
  9.       CreatePort - Create a    message    port.
  10.  
  11.      SYNOPSIS
  12.       msgport = CreatePort("Name", priority)
  13.         d0             A0,     D0 (0:8)
  14.  
  15.      FUNCTION
  16.       Creates a message port with the given    name and priority.
  17.       This function    is equivalent to that in amiga.lib, but    is
  18.       reentrant, and may be    called by assembly code.
  19.  
  20.      INPUTS
  21.       Name - pointer to a null terminated character    string,    or
  22.           NULL.     If NULL, this function    will not attach    the
  23.           port to the system msgport list (it will be private
  24.           to the caller).
  25.  
  26.       priority - the priority of this msgport (-128..127).
  27.  
  28.      RESULT
  29.       msgport - Pointer to an initialized message port, or NULL,
  30.           if port could    not be allocated.  If Name was non-
  31.           null,    then the port will have    been added to the
  32.           system's msgport list.
  33.  
  34.      BUGS
  35.       None known.
  36.  
  37.      SEE ALSO
  38.       DeletePort
  39.  
  40.      AUTHOR
  41.       SDB
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                         (printed 2/22/88)
  64.  
  65.  
  66.  
  67.